home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / SourceCode / Registration / Encoder.h < prev    next >
Text File  |  1992-12-19  |  1KB  |  53 lines

  1. /*
  2.  * (C) 1992 Simson Garfinkel and Associates, Inc.
  3.  *
  4.  * NeXTSTEP developers may freely use and redistribute this software as long
  5.  * as credit is given to Simson Garfinkel and Associates.
  6.  *
  7.  * EXPORT RESTRICTIONS:
  8.  *
  9.  * You may not ship the source-code module des.c outside of the US or canada.
  10.  *
  11.  * You may ship a program which uses the des.o compiled module outside of the
  12.  * United States to any type T or type V country as long as you do not provide
  13.  * cryptographic services to the user in your program and you clearly
  14.  * declare "commodity control number 5D11A" on your export declaration.
  15.  *
  16.  * Type T countries include all countries in the Western Hemisphere except Cuba.
  17.  * Type V countries include all countries in the Eastern Hemisphere except
  18.  * the previous communist block countries and the People's Republic of China,
  19.  * Vietnam, Cambodia, and Laos.
  20.  *
  21.  * For further information, contact the Office of Export Control:
  22.  *
  23.  *    Bureau of Export Administration
  24.  *    P.O. Box 273
  25.  *    Washington, DC 20044
  26.  *    202-377-2694
  27.  */
  28.  
  29. #import <objc/Object.h>
  30.  
  31. @interface Encoder:Object
  32. {
  33.     id    accessionNumberCell;
  34.     id    companyKeyCell;
  35.     id    endMonthCover;
  36.     id    endSwitch;
  37.     id    endYearCover;
  38.     id    licenseStringCell;
  39.     id    licenseTypeCover;
  40.     id    productCodeCell;
  41.     id    simUsersCell;
  42.     id    startMonthCover;
  43.     id    startSwitch;
  44.     id    startYearCover;
  45.     id    window;
  46. }
  47.  
  48. - calcLicense:sender;
  49. - nextLicense:sender;
  50. - delayedCalcLicense:sender;
  51.  
  52. @end
  53.